home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Presentations / Presentations ’97 / Sessions ’97 / Multiplatform Code⁄Data Sharing / HelloBothWorlds / Shared / DemoNetAccess.h < prev   
Encoding:
C/C++ Source or Header  |  1997-06-26  |  330 b   |  29 lines  |  [TEXT/CWIE]

  1. /*
  2.     DemoNetAccess.h
  3.     
  4.     Demo cross-platform web access class for MacHack 97
  5.     
  6.     Al Evans
  7.     
  8.     6/14/97
  9.     
  10. */
  11.  
  12. #ifndef DEMONETACCESS
  13. #define DEMONETACCESS
  14.  
  15. #include "common.h"
  16.  
  17. struct DemoWebConnection
  18. {
  19.                     DemoWebConnection();
  20.                     ~DemoWebConnection();
  21.                 
  22. Boolean                CanAccessWeb();
  23.  
  24. long                OpenSite(char const *url);
  25.  
  26. };
  27.  
  28.  
  29. #endif